home *** CD-ROM | disk | FTP | other *** search
/ Family Forum 254 / SOMC Family Forum 254 - Disc 1.iso / FBPRO97 / RESLEG.BAT < prev    next >
DOS Batch File  |  1996-09-11  |  2KB  |  64 lines

  1. @echo off
  2. if %1!==! goto needparm
  3. if not exist %1*.lge goto needparm
  4.  
  5. if %2!==! goto nodest
  6.  
  7. if exist %2%3%1*.* copy %2%3%1*.* 
  8. if exist %2%3%1*.* goto end
  9.  
  10. if exist %2:%3%1*.* copy %2:%3%1*.* 
  11. if exist %2:%3%1*.* goto end
  12.  
  13. if exist %2%3\%1*.* copy %2%3\%1*.*
  14. if exist %2%3\%1*.* goto end
  15.  
  16. if exist %2:%3\%1*.* copy %2:%3\%1*.*
  17. if exist %2:%3\%1*.* goto end
  18.  
  19. if exist %2\%3%1*.* copy %2\%3%1*.*
  20. if exist %2\%3%1*.* goto end
  21.  
  22. if exist %2:\%3%1*.* copy %2:\%3%1*.*
  23. if exist %2:\%3%1*.* goto end
  24.  
  25. if exist %2\%3\%1*.* copy %2\%3\%1*.*
  26. if exist %2\%3\%1*.* goto end
  27.  
  28. if exist %2:\%3\%1*.* copy %2:\%3\%1*.*
  29. if exist %2:\%3\%1*.* goto end
  30.  
  31. goto needparm
  32.  
  33. :nodest
  34. if not exist backup\%1*.* goto needparm
  35. copy backup\%1*.*
  36. goto end
  37.  
  38. :needparm
  39. echo.
  40. echo  RESLEG will restore the league files backed up with the BAKLEG
  41. echo  file from the specified drive and/or directory
  42. echo.
  43. echo  The proper syntax is:
  44. echo.
  45. echo     RESLEG LEAGUE [drive] [directory]
  46. echo.
  47. echo        LEAGUE is the unique portion of the league's filename. 
  48. echo        [drive] is an optional drive letter.
  49. echo        [directory] is an optional directory name.  
  50. echo.
  51. echo.
  52. echo  Example:  RESLEG NFL
  53. echo.  
  54. echo    will restore all leagues that have a filename that begin with "NFL"
  55. echo    Specifying "NFLPI96" would restore all leagues that have a filename
  56. echo    that begins with "NFLPI96".
  57. echo.
  58. echo  If you do not specify a drive or directory, your league will be copied
  59. echo  from the BACKUP directory under the installed FBPro '97 game directory.
  60. echo.
  61. echo  use BACKLEG to backup leagues.
  62. echo.
  63. :end
  64.